6e1cdde83cc0480e700100e122ce92f89483f336,community/main/java/org/neo4j/index/impl/lucene/ExactTxData.java,ExactTxData,get,#String#Object#,144

Before Change


        Set<Object> ids = idCollection( key, value, false );
        if ( ids == null || ids.isEmpty() )
        {
            return new Pair<Collection<Long>, TxData>( Collections.<Long>emptySet(), this );
        }
        return new Pair<Collection<Long>, TxData>( toLongs( ids ), this );
    }
    
    private Collection<Long> toLongs( Set<Object> ids )

After Change


        Set<Object> ids = idCollection( key, value, false );
        if ( ids == null || ids.isEmpty() )
        {
            return Pair.<Collection<Long>, TxData>of( Collections.<Long>emptySet(), this );
        }
        return Pair.<Collection<Long>, TxData>of( toLongs( ids ), this );
    }

    private Collection<Long> toLongs( Set<Object> ids )